home *** CD-ROM | disk | FTP | other *** search
/ Pascal Super Library / Pascal Super Library (CW International)(1997).bin / BORL_TIP / TI1000 / TI1770.ASC < prev    next >
Text File  |  1994-04-06  |  4KB  |  199 lines

  1.  
  2.  
  3.  
  4.  
  5.  
  6.  
  7.  
  8.   PRODUCT  :  Pascal                                NUMBER  :  1770
  9.   VERSION  :  7.0
  10.        OS  :  DOS
  11.      DATE  :  April 6, 1994                            PAGE  :  1/3
  12.  
  13.     TITLE  :  Unknown runtime errors.  What's error 163?
  14.  
  15.  
  16.  
  17.  
  18.  
  19.        Pascal sometimes returns runtime errors that aren't listed
  20.   in the manuals. If you ever get an IORESULT code in the range
  21.   150-199, just subtract 131 from it and the look in your DOS
  22.   reference manual (or in the list presented below) for the
  23.   relevant critical errors.
  24.        One error that users see quite often is number 163, which is
  25.   a sharing violation. It occurs when two users try to access the
  26.   same file at the same time.
  27.        Here's a list of critical errors. The first column has the
  28.   error number in decimal format, the second has the number in hex,
  29.   and the third provides an explanation of the error:
  30.  
  31.   DEC   HEX EXPLANATION
  32.   ===============================================
  33.   01 -- 01  Invalid function number
  34.   02 -- 02  File not found
  35.   03 -- 03  Path not found
  36.   04 -- 04  Too many open files (no handles left)
  37.   05 -- 05  Access denied
  38.   06 -- 06  Invalid handle
  39.   07 -- 07  Memory control blocks destroyed
  40.   08 -- 08  Insufficient memory
  41.   09 -- 09  Invalid memory block address
  42.   10 -- 0A  Invalid environment
  43.   11 -- 0B  Invalid format
  44.   12 -- 0C  Invalid access mode (open mode is invalid)
  45.   13 -- 0D  Invalid data
  46.   14 -- 0E  Reserved
  47.   15 -- 0F  Invalid drive specified
  48.   16 -- 10  Attempt to remove current directory
  49.   17 -- 11  Not same device
  50.   18 -- 12  No more files
  51.   19 -- 13  Attempt to write on a write-protected diskette
  52.   20 -- 14  Unknown unit
  53.   21 -- 15  Drive not ready
  54.   22 -- 16  Unknown command
  55.   23 -- 17  CRC error
  56.   24 -- 18  Bad request structure length
  57.   25 -- 19  Seek error
  58.   26 -- 1A  Unknown media type
  59.   27 -- 1B  Sector not found
  60.   28 -- 1C  Printer out of paper
  61.  
  62.  
  63.  
  64.  
  65.  
  66.  
  67.  
  68.  
  69.  
  70.  
  71.  
  72.  
  73.  
  74.   PRODUCT  :  Pascal                                NUMBER  :  1770
  75.   VERSION  :  7.0
  76.        OS  :  DOS
  77.      DATE  :  April 6, 1994                            PAGE  :  2/3
  78.  
  79.     TITLE  :  Unknown runtime errors.  What's error 163?
  80.  
  81.  
  82.  
  83.  
  84.   29 -- 1D  Write fault
  85.   30 -- 1E  Read fault
  86.   31 -- 1F  General failure
  87.   32 -- 20  Sharing violation
  88.   33 -- 21  Lock violation
  89.   34 -- 22  Invalid disk change
  90.   35 -- 23  FCB unavailable
  91.   36 -- 24  Sharing buffer overflow
  92.   37 -- 25  Reserved
  93.   38 -- 26  Unable to complete file operation (DOS 4.x)
  94.   39-49 -- 27-31 Reserved
  95.   50 -- 32  Network request not supported
  96.   51 -- 33  Remote computer not listening
  97.   52 -- 34  Duplicate name on network
  98.   53 -- 35  Network name not found
  99.   54 -- 36  Network busy
  100.   55 -- 37  Network device no longer exists
  101.   56 -- 38  NetBIOS command limit exceeded
  102.   57 -- 39  Network adapter error
  103.   58 -- 3A  Incorrect network response
  104.   59 -- 3B  Unexpected network error
  105.   60 -- 3C  Incompatible remote adapter
  106.   61 -- 3D  Print queue full
  107.   62 -- 3E  No space for print file
  108.   63 -- 3F  Print file deleted
  109.   64 -- 40  Network name deleted
  110.   65 -- 41  Access denied
  111.   66 -- 42  Network device type incorrect
  112.   67 -- 43  Network name not found
  113.   68 -- 44  Network name limit exceeded
  114.   69 -- 45  NetBIOS session limit exceeded
  115.   70 -- 46  Temporarily paused
  116.   71 -- 47  Network request not accepted
  117.   72 -- 48  Print or disk redirection is paused
  118.   73 -- 49-4F Reserved
  119.   80 -- 50  File already exists
  120.   81 -- 51  Reserved
  121.   82 -- 52  Cannot make directory entry
  122.   83 -- 53  Fail on INT 24
  123.   84 -- 54  Too many redirections
  124.   85 -- 55  Duplicate redirection
  125.   86 -- 56  Invalid password
  126.   87 -- 57  Invalid parameter
  127.  
  128.  
  129.  
  130.  
  131.  
  132.  
  133.  
  134.  
  135.  
  136.  
  137.  
  138.  
  139.  
  140.   PRODUCT  :  Pascal                                NUMBER  :  1770
  141.   VERSION  :  7.0
  142.        OS  :  DOS
  143.      DATE  :  April 6, 1994                            PAGE  :  3/3
  144.  
  145.     TITLE  :  Unknown runtime errors.  What's error 163?
  146.  
  147.  
  148.  
  149.  
  150.   88 -- 58  Network device fault
  151.   89 -- 59  Function not supported by network (DOS 4.x)
  152.   90 -- 5A  Required system component not installed (DOS 4.x)
  153.  
  154.  
  155.   DISCLAIMER: You have the right to use this technical information
  156.   subject to the terms of the No-Nonsense License Statement that
  157.   you received with the Borland product to which this information
  158.   pertains.
  159.  
  160.  
  161.  
  162.  
  163.  
  164.  
  165.  
  166.  
  167.  
  168.  
  169.  
  170.  
  171.  
  172.  
  173.  
  174.  
  175.  
  176.  
  177.  
  178.  
  179.  
  180.  
  181.  
  182.  
  183.  
  184.  
  185.  
  186.  
  187.  
  188.  
  189.  
  190.  
  191.  
  192.  
  193.  
  194.  
  195.  
  196.  
  197.  
  198.  
  199.